home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / ldapjdk.jar / netscape / ldap / ResponseControl.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-04-13  |  815 b   |  31 lines

  1. package netscape.ldap;
  2.  
  3. class ResponseControl {
  4.    private LDAPConnection m_connection;
  5.    private int m_messageID;
  6.    private LDAPControl[] m_controls;
  7.  
  8.    public ResponseControl(LDAPConnection var1, int var2, LDAPControl[] var3) {
  9.       this.m_connection = var1;
  10.       this.m_messageID = var2;
  11.       this.m_controls = new LDAPControl[var3.length];
  12.  
  13.       for(int var4 = 0; var4 < var3.length; ++var4) {
  14.          this.m_controls[var4] = var3[var4];
  15.       }
  16.  
  17.    }
  18.  
  19.    public int getMsgID() {
  20.       return this.m_messageID;
  21.    }
  22.  
  23.    public LDAPControl[] getControls() {
  24.       return this.m_controls;
  25.    }
  26.  
  27.    public LDAPConnection getConnection() {
  28.       return this.m_connection;
  29.    }
  30. }
  31.